SetCanceled Method

Task Parallel System.Threading

Transitions the underlying Task<(Of <(TResult>)>) into the Canceled state.

Namespace:  System.Threading.Tasks
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Public Sub SetCanceled
C#
public void SetCanceled()

Exceptions

ExceptionCondition
System..::.InvalidOperationException The underlying Task<(Of <(TResult>)>) is already in one of the three final states: RanToCompletion, Faulted, or Canceled.
System..::.ObjectDisposedExceptionThe Task was disposed.

See Also